home *** CD-ROM | disk | FTP | other *** search
/ Aminet 38 / Aminet 38 (2000)(Schatztruhe)[!][Aug 2000].iso / Aminet / dev / src / xad_bzip2.lha / huffman.c < prev    next >
Encoding:
C/C++ Source or Header  |  2000-05-19  |  3.7 KB  |  107 lines

  1. /* NOTE: FILE HAS BEEN MODIFIED:
  2.  * compression related code removed
  3.  *
  4.  * originals: http://sourceware.cygnus.com/bzip2/
  5.  */
  6.  
  7.  
  8. /*-------------------------------------------------------------*/
  9. /*--- Huffman coding low-level stuff                        ---*/
  10. /*---                                             huffman.c ---*/
  11. /*-------------------------------------------------------------*/
  12.  
  13. /*--
  14.   This file is a part of bzip2 and/or libbzip2, a program and
  15.   library for lossless, block-sorting data compression.
  16.  
  17.   Copyright (C) 1996-2000 Julian R Seward.  All rights reserved.
  18.  
  19.   Redistribution and use in source and binary forms, with or without
  20.   modification, are permitted provided that the following conditions
  21.   are met:
  22.  
  23.   1. Redistributions of source code must retain the above copyright
  24.      notice, this list of conditions and the following disclaimer.
  25.  
  26.   2. The origin of this software must not be misrepresented; you must 
  27.      not claim that you wrote the original software.  If you use this 
  28.      software in a product, an acknowledgment in the product 
  29.      documentation would be appreciated but is not required.
  30.  
  31.   3. Altered source versions must be plainly marked as such, and must
  32.      not be misrepresented as being the original software.
  33.  
  34.   4. The name of the author may not be used to endorse or promote 
  35.      products derived from this software without specific prior written 
  36.      permission.
  37.  
  38.   THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS
  39.   OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  40.   WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  41.   ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
  42.   DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  43.   DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE
  44.   GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  45.   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
  46.   WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
  47.   NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  48.   SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  49.  
  50.   Julian Seward, Cambridge, UK.
  51.   jseward@acm.org
  52.   bzip2/libbzip2 version 1.0 of 21 March 2000
  53.  
  54.   This program is based on (at least) the work of:
  55.      Mike Burrows
  56.      David Wheeler
  57.      Peter Fenwick
  58.      Alistair Moffat
  59.      Radford Neal
  60.      Ian H. Witten
  61.      Robert Sedgewick
  62.      Jon L. Bentley
  63.  
  64.   For more information on these sources, see the manual.
  65. --*/
  66.  
  67.  
  68. #include "bzlib_private.h"
  69.  
  70. /*---------------------------------------------------*/
  71. void BZ2_hbCreateDecodeTables ( Int32 *limit,
  72.                                 Int32 *base,
  73.                                 Int32 *perm,
  74.                                 UChar *length,
  75.                                 Int32 minLen,
  76.                                 Int32 maxLen,
  77.                                 Int32 alphaSize )
  78. {
  79.    Int32 pp, i, j, vec;
  80.  
  81.    pp = 0;
  82.    for (i = minLen; i <= maxLen; i++)
  83.       for (j = 0; j < alphaSize; j++)
  84.          if (length[j] == i) { perm[pp] = j; pp++; };
  85.  
  86.    for (i = 0; i < BZ_MAX_CODE_LEN; i++) base[i] = 0;
  87.    for (i = 0; i < alphaSize; i++) base[length[i]+1]++;
  88.  
  89.    for (i = 1; i < BZ_MAX_CODE_LEN; i++) base[i] += base[i-1];
  90.  
  91.    for (i = 0; i < BZ_MAX_CODE_LEN; i++) limit[i] = 0;
  92.    vec = 0;
  93.  
  94.    for (i = minLen; i <= maxLen; i++) {
  95.       vec += (base[i+1] - base[i]);
  96.       limit[i] = vec-1;
  97.       vec <<= 1;
  98.    }
  99.    for (i = minLen + 1; i <= maxLen; i++)
  100.       base[i] = ((limit[i-1] + 1) << 1) - base[i];
  101. }
  102.  
  103.  
  104. /*-------------------------------------------------------------*/
  105. /*--- end                                         huffman.c ---*/
  106. /*-------------------------------------------------------------*/
  107.